diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-07 20:05:58 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-07 20:05:58 +0100 |
| commit | 1ec33f27f5bff2b96c80b954b53a62951b6cd354 (patch) | |
| tree | ff412f3257048061f1283d8282c6d587106ee43f /src/pages/[locale]/furthsettins/index.astro | |
| parent | b8cef0cc878e51a909cc7c4fcd0e10c222894b85 (diff) | |
Replace staticPaths -> localeStaticPaths
Diffstat (limited to 'src/pages/[locale]/furthsettins/index.astro')
| -rw-r--r-- | src/pages/[locale]/furthsettins/index.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/[locale]/furthsettins/index.astro b/src/pages/[locale]/furthsettins/index.astro index 44fa92c..c42c671 100644 --- a/src/pages/[locale]/furthsettins/index.astro +++ b/src/pages/[locale]/furthsettins/index.astro @@ -1,12 +1,12 @@ --- import Layout from '../../../layouts/Layout.astro'; -import staticPaths from '../staticPaths'; +import localeStaticPaths from '../../../lib/localeStaticPaths'; import translate from '../../../i18n/translate'; import tFurthsettins from '../../../i18n/translations/pages/furthsettins'; import tSite from '../../../i18n/translations/site'; import type Locale from '../../../types/Locale'; -export async function getStaticPaths() { return staticPaths; } +export async function getStaticPaths() { return localeStaticPaths; } const locale = Astro.params.locale as Locale; const t = translate(locale); |
